home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 44
/
Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso
/
-in_the_mag-
/
basics
/
amos
/
intuiextend20b.lha
/
distribution
/
exemples
/
WhatIs.asc
< prev
Wrap
Text File
|
1980-03-10
|
691b
|
32 lines
'**************************************
' *
' IntuiExtend.Lib 2.0/@1995-98 *
' *
' by CIERP Philippe. *
' *
' from AMIGAzette 83 *
' *
'**************************************
'
' Command
' -What Is
'
Screen Open 0,640,256,16,$8000
Curs Off : Flash Off : Cls 0
'
Do
A$=Fsel$("")
Open In 1,A$ : L=Lof(1) : Close 1
Reserve As Work 10,L
ST10=Start(10)
Bload A$,ST10
'
E=What Is(ST10)
'
If E=-1
Print 'Fichier inconnu'
Else
Print Peek$(Varptr(E),4)
End If
Loop